From 61e133723ed8378baeaf15c84f5afa32cb6199c2 Mon Sep 17 00:00:00 2001 From: Ilias Tsitsimpis Date: Mon, 19 Feb 2024 17:12:25 +0100 Subject: [PATCH] Fix installation patch for iserv/unlit Bug: https://gitlab.haskell.org/ghc/ghc/-/issues/22557 Bug: https://gitlab.haskell.org/ghc/ghc/-/issues/22697 Gbp-Pq: Name hadrian-iserv --- hadrian/src/Packages.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hadrian/src/Packages.hs b/hadrian/src/Packages.hs index d1b49c35..51e6956c 100644 --- a/hadrian/src/Packages.hs +++ b/hadrian/src/Packages.hs @@ -192,7 +192,7 @@ programPath context@Context {..} = do -- See: https://github.com/snowleopard/hadrian/issues/570 -- Likewise for @iserv@ and @unlit@. name <- programName context - path <- if package `elem` [iserv, touchy, unlit] + path <- if package `elem` [touchy, unlit] then stageLibPath stage <&> (-/- "bin") else stageBinPath stage return $ path -/- name <.> exe -- 2.30.2